/* File:    DebugIt.h
 * Purpose: Generic debugging stuff
 * Author:  Matt Cloke
 * History: 16-Sep-93: IDJ:   created initial toolbox version
 *          19-Sep-94: MCC:   converted to my needs
 *
 */

#ifndef __debug_h
#define __debug_h

#ifndef debugging
#define debugging 0
#endif
#define DEBUG if (!debugging) ; else

extern void debug_output (char *allow, char *string, ...);
extern void debug_set_var_name (char *var_name);

#endif
